home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
Palettes
/
KeyDownBrowser
/
UsingKeyDownBrowser
/
KeyDownMatrix.h
< prev
next >
Wrap
Text File
|
1995-06-12
|
998b
|
37 lines
//---------------------------------------------------------------------------------------------------------
//
// KeyDownMatrix
//
// Inherits From: Matrix
//
// Declared In: KeyDownMatrix.h
//
// Class Description
//
// KeyDownMatrix is a subclass of Matrix that overrides the
// mouseDown: method in order to make the browser (most likely
// an instance of KeyDownBrowser) the First Responder.
//
// Added two instance methods (numRows, numCols). These should
// be category methods to Matrix, but didn't want to presume this
// for the user.
//
//
// Disclaimer
//
// You may freely copy, distribute and reuse this software and its
// associated documentation. I disclaim any warranty of any kind,
// expressed or implied, as to its fitness for any particular use.
//
//---------------------------------------------------------------------------------------------------------
#import <appkit/appkit.h>
@interface KeyDownMatrix : Matrix
{
}
- (int) numRows;
- (int) numCols;
@end